home *** CD-ROM | disk | FTP | other *** search
/ AmigActive 10 / AACD 10.iso / AACD / Resources / CDROM / Amiga_MO_FAQ / DOSDrivers-3½ / PC / PC540 < prev    next >
Text File  |  1999-03-21  |  979b  |  38 lines

  1. /* $VER: PC540 40.4 (21.3.99)
  2.  *
  3.  * 540MB MO file system entry, for AT-HD type MS-DOS disks.
  4.  *
  5.  * This file enables CrossDOSFileSystem on a 540MB MO disk cartridge that
  6.  * contains a single partition.
  7.  *
  8.  */
  9.  
  10. /* 540MB MO disks have 1041500 512-byte sectors. But 32512*32 = 1040384, so not
  11.  * all disk space is used. I assume this is the normal situation for AT-HD type
  12.  * 540MB MO disks. */
  13.  
  14. FileSystem    = L:CrossDOSFileSystem
  15. Flags        = 0
  16. Surfaces    = 1
  17. BlocksPerTrack    = 32
  18. SectorsPerBlock    = 1
  19. SectorSize    = 512
  20. Mask        = 0x7FFFFFFE    /* Change to suit your system and SCSI controller */
  21. MaxTransfer    = 0xFFFFFFFE    /* Change to suit your system and SCSI controller */
  22. Reserved    = 2
  23. Interleave    = 0
  24. LowCyl        = 1
  25. HighCyl        = 32511
  26. Buffers        = 128        /* Number of 512-byte filesystem buffers */
  27. BufMemType    = 1
  28. DosType        = 0x4D534400
  29. StackSize    = 4000
  30. Priority    = 10
  31. GlobVec        = -1
  32.  
  33. /* The Device and Unit fields are controlled by tooltypes in the PC540 icon.
  34.  *
  35.  * Device    = scsi.device
  36.  * Unit        = 4
  37.  */
  38.